From a3a4c50f26b8750ae1c87f1f1103b84b7d2e6315 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 14 Nov 2023 15:11:22 +0100 Subject: refactor(components): replace LinksListWidget with LinksWidget * avoid List component repeat * rewrite tests and CSS * add an id to LinksWidgetItemData (previously LinksListItems) type because the label could be duplicated --- src/pages/blog/page/[number].tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/pages/blog/page/[number].tsx') diff --git a/src/pages/blog/page/[number].tsx b/src/pages/blog/page/[number].tsx index 842c2b8..5f6a2d6 100644 --- a/src/pages/blog/page/[number].tsx +++ b/src/pages/blog/page/[number].tsx @@ -9,7 +9,7 @@ import { useIntl } from 'react-intl'; import { getLayout, Heading, - LinksListWidget, + LinksWidget, type MetaItemData, PageLayout, PostsList, @@ -36,7 +36,7 @@ import type { import { settings } from '../../../utils/config'; import { getBlogSchema, - getLinksListItems, + getLinksItemData, getPageLinkFromRawData, getPostsList, getSchemaJson, @@ -237,13 +237,13 @@ const BlogPage: NextPageWithLayout = ({ breadcrumbSchema={breadcrumbSchema} headerMeta={headerMeta} widgets={[ - {thematicsListTitle} } - items={getLinksListItems( + items={getLinksItemData( thematicsList.map((thematic) => getPageLinkFromRawData(thematic, 'thematic') ) @@ -251,13 +251,13 @@ const BlogPage: NextPageWithLayout = ({ // eslint-disable-next-line react/jsx-no-literals -- Key allowed key="thematics-list" />, - {topicsListTitle} } - items={getLinksListItems( + items={getLinksItemData( topicsList.map((topic) => getPageLinkFromRawData(topic, 'topic')) )} // eslint-disable-next-line react/jsx-no-literals -- Key allowed -- cgit v1.2.3